home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Mail / pine3.92 / pine / osdep / mswinver.c < prev    next >
C/C++ Source or Header  |  1995-01-22  |  2KB  |  68 lines

  1. /*
  2.  * Pico Versions:
  3.  *
  4.  * 1.0.16    Looks for 'mailcap' in the pine home directory.
  5.  *        Slightly more informative error messages when failed to exec
  6.  *        viewer.
  7.  *        Changed the name to PC-Pine and PC-Pico (for Windows).
  8.  *        Tells the user to delete the temp image file.
  9.  * 1.0.17    Added Cut, Copy, and Paste.
  10.  *        Several changes in pine.
  11.  *        Fixed bug with reallocating a NULL block.
  12.  * 1.0.18    Added "Cancel Paste!"
  13.  * 3.90.2    Changed to use independent pine/pico version numbering.
  14.  *        Less consistent relative to windows source code, but
  15.  *        more consistent vis features the user sees.  Rather
  16.  *        than mapping internal/external (public) version numbers
  17.  *        it might make sense to keep track of internal changes by
  18.  *        date.
  19.  * 3.90.3    Support added for copy of whole scrolltool buffer into
  20.  *        clipboard.  Fixed to limit amount of pasted text during
  21.  *        text input prompts.  Windows printing added.
  22.  *
  23.  * ....
  24.  *
  25.  * 3.92, Jan 22 1995
  26.  *        Recent modifications:  Menues, mouse sensitivity in file browser
  27.  *        (which isn't actually seen in the windows version), and responce
  28.  *        to MW_QUERYENDSESSION AND MW_ENDSESSION.
  29.  *        Saved source for this version for Dr. Watson logs for tracking
  30.  *        random protection faults.
  31.  *
  32.  */
  33.  
  34.  
  35. #define VER_MAJOR 3
  36. #define VER_MINOR 92
  37. extern char datestamp[];
  38.  
  39.  
  40. /*
  41.  * Return major version number...
  42.  */
  43. int
  44. mswin_majorver()
  45. {
  46.     return(VER_MAJOR);
  47. }
  48.  
  49.  
  50. /*
  51.  * Return minor version number...
  52.  */
  53. int
  54. mswin_minorver()
  55. {
  56.     return(VER_MINOR);
  57. }
  58.  
  59.  
  60. /*
  61.  * Return compilation number...
  62.  */
  63. char *
  64. mswin_compilation_date()
  65. {
  66.     return(datestamp);
  67. }
  68.